home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Files
/
Errors
/
NotAMacintoshDisk.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
300b
|
21 lines
// NotAMacintoshDisk.h
#ifndef NotAMacintoshDisk_h
#define NotAMacintoshDisk_h
#ifndef MountError_h
#include "MountError.h"
#endif
class NotAMacintoshDisk: public MountError
{
public:
NotAMacintoshDisk( OSErr error )
: MountError( error )
{}
// used for noMacDskErr
};
#endif